Dashboard Temp Share Shortlinks Frames API

HTMLify

app.js
Views: 11 | Author: huxn-webdev
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
const close = document.getElementById("close");
const open = document.getElementById("open");
const modal = document.getElementById("modal");

open.addEventListener("click", () => modal.classList.add("show-modal"));
close.addEventListener("click", () => modal.classList.remove("show-modal"));

window.addEventListener("click", (e) => {
  e.target === modal ? modal.classList.remove("show-modal") : false;
});